home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / editor / par.zip / EXAMPL10.POM < prev    next >
Text File  |  1997-06-27  |  406b  |  21 lines

  1. ;
  2. ;   Allow null lines
  3. ;
  4. MINLEN "0"
  5. ;
  6. ;   Decide which lines to properize
  7. ;
  8. IF $FLINE[1] = " " THEN prop = "Y" ELSE "N"
  9. IF $FLINE[1] = "-" THEN prop = "Y"
  10. ;
  11. ;   Properize, using the Properization Exceptions File GENERIC.PEF
  12. ;   The "empty" (null) methods string means "use all methods except S"
  13. ;
  14. BEGIN prop = "Y"
  15.   PROPER  $FLINE  ""  "GENERIC.PEF"
  16. END
  17. ;
  18. ;   Output
  19. ;
  20. OUTEND |{$FLINE}
  21.